home *** CD-ROM | disk | FTP | other *** search
/ START Magazine / START VOL 3 NO 7.st / KAMIKAZE.ARC / INPUT.C < prev    next >
Encoding:
C/C++ Source or Header  |  1988-11-14  |  1.7 KB  |  153 lines

  1.  
  2. #include <gemdefs.h>
  3. #include <osbind.h>
  4. #include "kamikaze.h"
  5.  
  6. extern WORD *aline;
  7. extern WORD handle;
  8. extern long beam_peek();
  9.  
  10. WORD mouse_button, omouse_button;
  11. WORD mouse_x, mouse_y;
  12. WORD lastx, lasty;
  13. WORD mouse_moved;    /* mouse not same as last time - x,y or buttons */
  14. WORD key_hit;
  15. long key_in;
  16. WORD mouse_on = 1;
  17.  
  18. static WORD reuse;
  19.  
  20. reuse_input()
  21. {
  22. reuse = 1;
  23. }
  24.  
  25. check_input()
  26. {
  27. unsigned WORD w;
  28. register WORD *a;
  29. unsigned long l;
  30. WORD mouse_color;
  31.  
  32. if (reuse)
  33.     {
  34.     reuse = 0;
  35.     return;
  36.     }
  37. lastx = mouse_x;
  38. lasty = mouse_y;
  39. a = aline;
  40. omouse_button = mouse_button;
  41. mouse_x = *(a-301);
  42. mouse_y = *(a-300);
  43. mouse_button = *(a-174);
  44. if (Cconis())
  45.     {
  46.     key_hit = 1;
  47.     l = Crawcin();
  48.     w = l>>8;
  49.     w += l;
  50.     key_in = w;
  51.     }
  52. else
  53.     {
  54.     key_hit = 0;
  55.     }
  56. if (mouse_x == lastx && mouse_y == lasty && mouse_button == omouse_button)
  57.     mouse_moved = 0;
  58. else
  59.     {
  60.     mouse_moved = 1;
  61.     }
  62. if (mouse_on)
  63.     {
  64.     if (mouse_moved)
  65.         {
  66. #ifdef JIM_CURSOR
  67.         restore_m();
  68.         save_m();
  69.         draw_m();
  70. #endif JIM_CURSOR
  71.         }
  72.     }
  73. }
  74.  
  75.  
  76. #ifdef JIM_CURSOR
  77. hide_mouse()
  78. {
  79. if (mouse_on)
  80.     {
  81.     restore_m();
  82.     mouse_on = 0;
  83.     }
  84. }
  85.  
  86. show_mouse()
  87. {
  88. if (!mouse_on)
  89.     {
  90.     save_m();
  91.     draw_m();
  92.     mouse_on = 1;
  93.     }
  94. }
  95. #endif JIM_CURSOR
  96.  
  97. hide_mouse()
  98. {
  99. v_hide_c(handle, 0);
  100. }
  101.  
  102. show_mouse()
  103. {
  104. v_show_c(handle, 0);
  105. }
  106.  
  107. black_hand()
  108. {
  109. graf_mouse(4, 0L);
  110. }
  111.  
  112. white_hand()
  113. {
  114. graf_mouse(3, 0L);
  115. }
  116.  
  117. bee_cursor()
  118. {
  119. graf_mouse(2, 0L);
  120. }
  121.  
  122. wait_penup()
  123. {
  124. for (;;)
  125.     {
  126.     check_input();
  127.     if (!PDN)
  128.         break;
  129.     }
  130. }
  131.  
  132. wait_click()
  133. {
  134. for (;;)
  135.     {
  136.     check_input();
  137.     if (key_hit || PJSTDN || RJSTDN)
  138.         break;
  139.     }
  140. }
  141.  
  142. wait_ednkey()
  143. {
  144. for (;;)
  145.     {
  146.     check_input();
  147.     if (EDN || key_hit)
  148.         break;
  149.     }
  150. }
  151.  
  152.  
  153.